home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
FLM
/
otherfiles
/
english
/
ARexx
/
take.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2000-01-01
|
880b
|
25 lines
/* This script takes translation from FLM and send it at your editor/word
processor which writes it under the current cursor position */
Options RESULTS
Address FLM TAKEWORD
/* Now translation is in the variable RESULT */
If Symbol('RESULT')='LIT' Then Exit /* Test if a word has really been
returned. */
Address <adr> <command> RESULT /* send contents of variable RESULT to
your editor/word processor */
/* For <adr> you must add the ARexx address of your program and for
<command> you must add the command which sends word under the current
cursor position.
Ex. Address EDWARD InsertChars RESULT
It's also possible to drop 'Address' + 'Program address port' because
normally these are given as default values. Therefore e.g. you could
only indicate "InsertChars RESULT".
*/